Calaculate The Precision And Recall For a Model

Get Model Precision Recall

Calaculate the precision and recall for a model

Request
Request Body schema: application/json

The model and the dataset to calculate precision and recall for by confThreshold and iouThreshold

modelId
required
string

The model that calculated on it

datasetId
required
string

The dataset that calculated on it

iouThreshold
required
number <double>

The iouThreshold of the calculation

metric
string

The metric to calculation the confusion Matrix

property name*
additional property
any
Responses
200

Ok

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Internal Server Error

post/ml/metrics/precisionRecall
Request samples
application/json
{
  • "modelId": "string",
  • "datasetId": "string",
  • "iouThreshold": 0,
  • "metric": "string"
}
Response samples
application/json
{
  • "modelId": "modelId",
  • "datasetId": "datasetId",
  • "iouThreshold": 0.5
}